home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 3: Developer Tools / Linux Cubed Series 3 - Developer Tools.iso / devel / lang / c / pthd-0.000 / pthd-0 / pthd-0.7 / src_thread / Makefile next >
Encoding:
Makefile  |  1995-08-16  |  229 b   |  14 lines

  1. #  Makefile for public portion of the POSIX pthreads API
  2. #
  3. include ../Rules.runtime
  4.  
  5. all: th
  6.  
  7. LINKS  = ${UTILS} ${PTHREAD_LIB}
  8.  
  9. th:  thread.c ${LINKS}
  10.     ${CC} ${CFLAGS} thread.c ${LINKS} -o th
  11. clean:
  12.     rm -f *.o *.bak *.rem th *~
  13.  
  14.